home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / editor / snmp_0_1.zip / snmp-0.1 / aka / snmp / BERSerializable.java < prev    next >
Text File  |  1997-06-09  |  853b  |  29 lines

  1. /*
  2. Snmp Library
  3. Copyright (C) 1997 Alex Kowalenko Associates Pty Ltd. All rights reserved.
  4.  
  5. This software maybe be free distributed, any any form, without fee, 
  6. but may not be modified in any way without express permission of 
  7. the directors of Alex Kowalenko Associates Pty Ltd. 
  8.  
  9. Alex Kowalenko Associates Pty Ltd makes no representations or
  10. warranties about the suitabililty of the software, not even the
  11. implied warranty of merchantability or fitness for any particular
  12. purpose.    
  13. */
  14.  
  15. /**
  16.  * Interface for BER serializable objects in SNMP.  BER serializable objects
  17.  * also need to have a constructor that constructs the object from a 
  18.  * ByteBuffer.
  19.  * @version     $Id: BERSerializable.java,v 1.1 1997/05/18 08:11:53 alex Exp $
  20.  * @author      Alex Kowalenko
  21.  */
  22.  
  23. package aka.snmp;
  24.  
  25. interface BERSerializable {
  26.  
  27.     ByteBuffer BERSerialize();
  28. };
  29.